Skip to content

chore(deps): bump pinecone from 7.2.0 to 7.3.0#271

Merged
mergify[bot] merged 1 commit into
mainfrom
dependabot/pip/pinecone-7.3.0
Jul 1, 2025
Merged

chore(deps): bump pinecone from 7.2.0 to 7.3.0#271
mergify[bot] merged 1 commit into
mainfrom
dependabot/pip/pinecone-7.3.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jul 1, 2025

Bumps pinecone from 7.2.0 to 7.3.0.

Release notes

Sourced from pinecone's releases.

v7.3.0

This minor release includes the ability to interact with the Admin API and adds support for working with index namespaces via gRPC. Previously, namespace support was available only through REST.

Admin api

This release introduces an Admin class that provides support for performing CRUD operations on projects and API keys using REST.

Projects

from pinecone import Admin
Use service account credentials
admin = Admin(client_id='foo', client_secret='bar')
Example: Create a project
project = admin.project.create(
name="example-project",
max_pods=5
)
print(f"Project {project.id} was created")
Example: Rename a project
project = admin.project.get(name='example-project')
admin.project.update(
project_id=project.id,
name='my-awesome-project'
)
Example: Enable CMEK on all projects
project_list = admin.projects.list()
for proj in project_list_response.data:
admin.projects.update(
project_id=proj.id,
force_encryption_with_cmek=True
)
Example: Set pod quota to 0 for all projects
project_list = admin.projects.list()
for proj in project_list_response.data:
admin.projects.update(project_id=proj.id, max_pods=0)
Delete the project
admin.project.delete(project_id=project.id)

API Keys

</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [pinecone](https://github.com/pinecone-io/pinecone-python-client) from 7.2.0 to 7.3.0.
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Changelog](https://github.com/pinecone-io/pinecone-python-client/blob/main/CHANGELOG.md)
- [Commits](pinecone-io/python-sdk@v7.2.0...v7.3.0)

---
updated-dependencies:
- dependency-name: pinecone
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot requested a review from lpm0073 July 1, 2025 22:37
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Jul 1, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot Bot added dependencies Dependabot dependency checking python Python dependency checked by Dependabot labels Jul 1, 2025
@mergify mergify Bot merged commit 1a0aaad into main Jul 1, 2025
2 checks passed
@dependabot dependabot Bot deleted the dependabot/pip/pinecone-7.3.0 branch July 1, 2025 22:38
@lpm0073
Copy link
Copy Markdown
Member

lpm0073 commented Jul 30, 2025

🎉 This PR is included in version 1.3.12 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependabot dependency checking python Python dependency checked by Dependabot released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant